home *** CD-ROM | disk | FTP | other *** search
/ Complete Internet Archive / Complete Internet Archive.iso / JAVA / kawaset.exe / readme.txt < prev   
Text File  |  1997-01-14  |  9KB  |  177 lines

  1. ---------------------------------------
  2. Kawa : Questions and Answers (1/10/97)
  3. Kawa 1.5
  4. email : kawa@fni.net
  5. web   : http://www.fni.net/kawa/
  6. --------------------------------------
  7.  
  8. Go online at
  9. Kawa 1.0 features : http://www.fni.net/kawa/support.htm
  10. Kawa 1.5 features : http://www.fni.net/kawa/support15.htm
  11.  
  12.                       - - - - - - - - - - - - - - - -
  13.  
  14.  - How do I install Kawa ?
  15.  - Where do I start with Kawa ?
  16.  - Nothing happens when I try to compile my files....
  17.  - I have a lot of compilation errors. How do I go back to the source file ?
  18.  - How do I rebuild the entire project ?
  19.  - I am developing an Java application, do I need to open a Dos session run the Java interpreter. 
  20.  - When I press the F1 key, I do not see any help file displayed
  21.  - I have a lot of compilation errors. How do I go back to the source file ?
  22.  - About DOS/Unix File conversion ?
  23.  - How do I run the Appletviewer with my Applet ?
  24.  - How do I stop my Applet now that everything is redirected to the Output Window ?
  25.  - How do I work with the GUI debugger
  26.  - I think I found a bug in Kawa. Where do I send my bug report ?
  27.  - Known bugs list (Updated - 10/5/96)
  28.  - How do I order Kawa ?
  29.  
  30.                                  - - - - - - - - - - - - - - - -
  31.  
  32. O  How do I install Kawa ?
  33.  
  34.     Download Kawa from our Web site. 
  35.  
  36.     If you are a first Kawa user, or if you do not have kawa installed on your machine, download the entire 
  37.     package (Kawaset.exe) This is a self-extractible file. You do not need special tool like WinZip utility to 
  38.     uncompress the file. Select an empty directory and download the file. Then using your favorite File Manager, 
  39.     run Kawaset.exe. This will uncompress the file and will create 4 files (Kawa.exe, mfc40.dll, msvcrt40.dll, 
  40.     readme.txt) in a directory of your choice.
  41.  
  42.     If you have already Kawa installed on your machine. Reinstalled Kawa by downloading just the executable 
  43.     (but compressed) file kawacore. Overwrite the old kawa.exe with the new one.
  44.  
  45.     The installation process is finished. You can run Kawa.exe to execute Kawa !!! We do not modify your 
  46.     environment at all (Autoexec.bat, Config.sys, ...)
  47.  
  48. O  Where do I start with Kawa ?
  49.  
  50.     A1. Make sure that your Java Developer Kit (JDK) from SUN is well setup. You should be able to compile and 
  51.     run your Java applets and/or applications correctly from the DOS command prompt, just by using SUN Java 
  52.     development tools. (See how to setup the JDK). Kawa is using your working environment to run smoothly.
  53.  
  54.     A2. If you want to compile one file. Just Open the source file using the File->Open menu. Then, Compile your file 
  55.     using the toolbar button, or the menu (F7) or using the right button of your mouse. The output debug window 
  56.     will display any errors...
  57.  
  58.     A3. If you have already a bunch of files, create a new project, and insert your java source files. They must be all 
  59.     in the same directory. You can compile the opened source files or you can rebuild the entire project. The ouput 
  60.     debug window will display any errors...
  61.  
  62. O   How do I rebuild the entire project ?
  63.  
  64.     A. First, select first your main file (this is the file which contains the main() or init() method) with your mouse. 
  65.     Click right button on select "Main Class". The icon will change shape.
  66.  
  67.             Before After 
  68.  
  69. O  Nothing happens when I try to compile my files....
  70.  
  71.     A. First make sure that you have in your PATH environment, the java tools directory and in your CLASSPATH 
  72.     variable you have the current Java classes directory and the also the current directory. It should look like :
  73.  
  74.     PATH = ...;C:;
  75.  
  76.     CLASSPATH = .;C:; 
  77.  
  78.     In you need more information, check out JavaSoft Site to properly setup your JDK.
  79.  
  80.     Each new compilation should open the output debug window...
  81.  
  82. O   I am developing an Java application, do I need to open a Dos session run the Java interpreter. 
  83.  
  84.     A. NO !!! Just press the run button on the toolbar . If you have selected you main file (see Question 2), Kawa will 
  85.     run the Java application for you.
  86.  
  87. O  When I press the F1 key, I do not see any help file displayed
  88.  
  89.     A. Make sure you have downloaded and Installed the Java documentation in Windows Help Format from the 
  90.     dippybird site. Bill Bercik did an excellent job by converting the JavaTM documentation. We integrated the 
  91.     Help documentation in Kawa. 
  92.  
  93.     Go to Options - > Help Setup.... menu and enter (or browse) the location of your API Help file (Api.Hlp) 
  94.     documentation. By default, it should be :
  95.  
  96.     C: Files.hlp
  97.  
  98. O  I have a lot of compilation errors. How do I go back to the source file ?
  99.  
  100.     A. Simple as a (double) click. Just double click on the compilation error message. Kawa will bring you back in 
  101.     your source file where the error is located. 
  102.  
  103. O  About DOS/Unix File conversion ?
  104.  
  105.     A. If you open a java source file in Unix format, Kawa wil display its content correctly in a window editor. If you 
  106.     save this file, by default you will save it in Unix format. You can save it in Dos format if you choose the FILE -> 
  107.     SAVE AS option. You can check or uncheck the UNIX FORMAT option.
  108.  
  109. O  How do I run the Appletviewer with my Applet ?
  110.  
  111.     A. Insert your HTML file in the project window. Select this file with the right button by choosing the MAIN HTML 
  112.     option. Now you have configured your project to run automatically AppletViewer. Go to the toolbar and click 
  113.     on the RUN button. Kawa will lauch your Applet.
  114.  
  115.     Before After 
  116.  
  117. O  How do I stop my Applet now that everything is redirected to the Output Window ?
  118.  
  119.     A. We added new Menus (Project->Stop Run) and if you are in the output window, by clicking on the right 
  120.     mouse button , you will find the same menu. This will kill your Applet or Application.
  121.  
  122. O  How do I work with the GUI debugger ?
  123.  
  124.     Start by adding some breakpoints (using the F9 key, Right button ou source file) in you source files, Kawa will 
  125.     display a red circle on the left side of the source line. Do not forget that your files must be compiled with the -g 
  126.     options (Menu Project->Compile Options) in order to debug debug them. Then run the debugger by pressing 
  127.     the F5 key or Menu Build->GUI Debug->Run or first button in the debug toolbar . 
  128.  
  129.     When the debugger hits a breakpoint (Kawa will open your source file for you and stops at the breakpoint, 
  130.     arrow bitmap) you are able to display local variables , memory state and threads states (Toolbar button or 
  131.     Menu Build->GUI Debug->select local, memory or threads). You can also check some local variables by 
  132.     double-clicking your variable name inside your source file (GREAT!!!). You can also perform debugging 
  133.     operation like Continue (F8), Step Into (F11) or Stop (Right mouse button on debug window or Menu 
  134.     Build->GUI Debug->Exit . If you are lost in your breakpoints, Display the Breakpoints view (Menu 
  135.     Project->Breakpoints...). You can go to your source file or remove the breakpoints. 
  136.  
  137.     We do not provide all the JDB options from SUN, but we will add them as soon as possible. But, you can enter 
  138.     debug commands (using the Menu Build->GUI Debug->Command) like if you were working on the 
  139.     JDB console. The output is redirected to the Debug Window. You can still run the JDB in a console window 
  140.     using the Menu Build->JDB Debug. 
  141.  
  142. O  I think I found a bug in Kawa. Where do I send my bug report ?
  143.  
  144.     A. Send your bug report or any suggestions you have to Kawa Support (kawa@fni.net).
  145.     Indicate on which platform (Win95 or WinNT 3.51, 4.0) you are working on... 
  146.     
  147.     Thanks for using Kawa !!!.
  148.  
  149. O  Known Bugs (10/5/96)
  150.    
  151.     1. Drag and drop of text in the editor is not supported yet. Please refrain from using it.
  152.  
  153.     2. Kawa sometimes does not decide the right class name for setting breakpoints. This is indicated by the
  154.     message "Error setting the breakpoint at nnn" message in the output window. The class name used for
  155.     setting the breakpoint can be verified by checking Project/Breakpoint list dialog box. Since Kawa still does
  156.     not parse quoted strings in the editor, having a string "... class test..." in the class body will result in Kawa
  157.     selecting test as the class name for deciding the breakpoint. The interim solution is not to have the exact
  158.     word "class" in a quoted string anywhere in the class body. 
  159.  
  160.     3. NT 3.51 users
  161.     ctl3d32.dll provided with Kawa 1.1 does not work with this UI.
  162.     Please rename or remove this file from your Kawa setup directory.
  163.         
  164.     4. Scrollbar does not repaint the window. You may see two scrollbars
  165.     in the editor window.
  166.     
  167. O  How do I order a copie of Kawa
  168.  
  169.     A. Read the order.txt file in 
  170.  
  171.  
  172. TM Java and other Java-based names are trademarks of Sun Microsystems, Inc. 
  173. TM DOS, Windows, Windows95 and WinNT are trademarks of Microsoft Corporation 
  174.  
  175. -------------------------------------
  176. Kawa Support (kawa@fni.net)
  177. ⌐ 1996, 1997 All Rights Reserved